repo.or.cz
/
windows-sources.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added samples
[windows-sources.git]
/
sdk
/
samples
/
all in on code
/
Visual Studio 2010
/
CSFTPDownload
/
Program.cs
blob
d5e48190e51ca01f355b6131cb019bc6bf51cef0
1
using
System
;
2
using
System
.
Windows
.
Forms
;
3
4
namespace
CSFTPDownload
5
{
6
static class
Program
7
{
8
/// <summary>
9
/// The main entry point for the application.
10
/// </summary>
11
[
STAThread
]
12
static void
Main
()
13
{
14
Application
.
EnableVisualStyles
();
15
Application
.
SetCompatibleTextRenderingDefault
(
false
);
16
Application
.
Run
(
new
MainForm
());
17
}
18
}
19
}